nixpkgs/pkgs/development/python-modules/first/default.nix
R. RyanTM b197f05db6 python37Packages.first: 2.0.1 -> 2.0.2 (#58784)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-first/versions
2019-04-03 00:28:37 +02:00

22 lines
517 B
Nix

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