biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / first / default.nix
blob70edb111454278050fe8895f12f9c737a234ce16
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "first";
10   version = "2.0.2";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-/yhbCMVfjJfOTqcBJ0OvJJXJ8SkXhfFjcivTb2r2078=";
18   };
20   doCheck = false; # no tests
22   pythonImportsCheck = [ "first" ];
24   meta = with lib; {
25     description = "Function you always missed in Python";
26     homepage = "https://github.com/hynek/first/";
27     changelog = "https://github.com/hynek/first/blob/${version}/HISTORY.rst";
28     license = licenses.mit;
29     maintainers = with maintainers; [ zimbatm ];
30   };