Skip to content

Instantly share code, notes, and snippets.

@makefu
Created April 10, 2019 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makefu/91f34bbf91c7cc9a52b47a8eb87cb294 to your computer and use it in GitHub Desktop.
Save makefu/91f34bbf91c7cc9a52b47a8eb87cb294 to your computer and use it in GitHub Desktop.
{ lib
, buildPythonPackage
, fetchPypi
, jinja2
, setuptools
}:
buildPythonPackage rec {
pname = "nixpkgs-pytools";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "6aaf1e990be639a0d01afb454756606f3111dd8c596b6e848d4a0cec019168d0";
};
propagatedBuildInputs = [
jinja2
setuptools
];
meta = with lib; {
description = "Tools for removing the tedious nature of creating nixpkgs derivations";
homepage = https://github.com/nix-community/nixpkgs-pytools/;
license = licenses.mit;
# maintainers = [ maintainers. ];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment