mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
incremental: init 16.10.1
Tested on NixOS unstable
This commit is contained in:
parent
34b5c9a4de
commit
487229654e
2 changed files with 21 additions and 0 deletions
19
pkgs/development/python-modules/incremental/default.nix
Normal file
19
pkgs/development/python-modules/incremental/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, buildPythonPackage, fetchurl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "incremental";
|
||||
version = "16.10.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/i/${pname}/${name}.tar.gz";
|
||||
sha256 = "0hh382gsj5lfl3fsabblk2djngl4n5yy90xakinasyn41rr6pb8l";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://github.com/twisted/treq;
|
||||
description = "Incremental is a small library that versions your Python projects";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ nand0p ];
|
||||
};
|
||||
}
|
|
@ -31906,6 +31906,8 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
incremental = callPackage ../development/python-modules/incremental { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
|
Loading…
Reference in a new issue