about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/incremental/default.nix
blob: 6cbed7221a8fefeefd8fdebe506d21b44c181946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "incremental";
  version = "21.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02f5de5aff48f6b9f665d99d48bfc7ec03b6e3943210de7cfc88856d755d6f57";
  };

  meta = with lib; {
    homepage = "https://github.com/twisted/treq";
    description = "Incremental is a small library that versions your Python projects";
    license = licenses.mit;
    maintainers = with maintainers; [ nand0p ];
  };
}