depot/third_party/nixpkgs/pkgs/development/python-modules/first/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
477 B
Nix

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