3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #213539 from fabaff/pyaftership-bump

python310Packages.pyaftership: 21.11.0 -> 23.1.0
This commit is contained in:
Fabian Affolter 2023-01-31 00:17:02 +01:00 committed by GitHub
commit f0dfcea715
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "pyaftership";
version = "21.11.0";
version = "23.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -18,8 +18,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "ludeeus";
repo = pname;
rev = version;
sha256 = "sha256-SN7fvI/+VHYn2eYQe5wp6lEZ73YeZbsiPjDiq/Ibk3Q=";
rev = "refs/tags/${version}";
hash = "sha256-njlDScmxIYWxB4EL9lOSGCXqZDzP999gI9EkpcZyFlE=";
};
propagatedBuildInputs = [
@ -46,6 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python wrapper package for the AfterShip API";
homepage = "https://github.com/ludeeus/pyaftership";
changelog = "https://github.com/ludeeus/pyaftership/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ jamiemagee ];
};