My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/incremental/default.nix

18 lines
482 B

{ 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; [ ];
};
}