nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.pypoint: 2.2.0 -> 2.2.1

authored by

Fabian Affolter and committed by
Jonathan Ringer
587ea4f6 052e144f

+7 -4
+7 -4
pkgs/development/python-modules/pypoint/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pypoint"; 10 - version = "2.2.0"; 10 + version = "2.2.1"; 11 + format = "setuptools"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "fredrike"; 14 15 repo = "pypoint"; 15 16 rev = "v${version}"; 16 - sha256 = "sha256-2PKZtn+l93de4/gPPM2Wdt04Zw+ekDadwNgL6ZKTqhY="; 17 + sha256 = "sha256-Or7A/Br6BgiCF6OHRtN5TAt++Tu1RLS9mYRgD7Aljts="; 17 18 }; 18 19 19 20 propagatedBuildInputs = [ ··· 25 24 # upstream has no tests 26 25 doCheck = false; 27 26 28 - pythonImportsCheck = [ "pypoint" ]; 27 + pythonImportsCheck = [ 28 + "pypoint" 29 + ]; 29 30 30 31 meta = with lib; { 31 - description = "API for Minut Point"; 32 + description = "Python module for communicating with Minut Point"; 32 33 homepage = "https://github.com/fredrike/pypoint"; 33 34 license = licenses.mit; 34 35 maintainers = with maintainers; [ dotlambda ];