nixpkgs/pkgs/development/python-modules/first/default.nix

21 lines
477 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
2017-03-12 18:10:04 +00:00
pname = "first";
version = "2.0.2";
2017-03-12 18:10:04 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1gykyrm6zlrbf9iz318p57qwk594mx1jf0d79v79g32zql45na7z";
2017-03-12 18:10:04 +00:00
};
doCheck = false; # no tests
meta = with lib; {
2017-03-12 18:10:04 +00:00
description = "The function you always missed in Python";
homepage = "https://github.com/hynek/first/";
2017-03-12 18:10:04 +00:00
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}