Skip to content

Commit

Permalink
python3Packages.siphashc: inherit pname in fetchPypi, fix license
Browse files Browse the repository at this point in the history
  • Loading branch information
erictapen authored and fricklerhandwerk committed Sep 4, 2024
1 parent 378ef14 commit d423e1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/siphashc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ buildPythonPackage rec {
build-system = [ setuptools ];

src = fetchPypi {
pname = "siphashc";
inherit version;
inherit pname version;
sha256 = "sha256-ptNpy7VkUXHbjvdir6v+eYOmtQ/j8XPXq4lj7ceS/5s=";
};

Expand All @@ -25,7 +24,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python c-module for siphash";
homepage = "https://github.com/WeblateOrg/siphashc";
license = licenses.mit;
changelog = "https://github.com/WeblateOrg/siphashc/blob/${version}/CHANGES.rst";
license = licenses.isc;
maintainers = with maintainers; [ erictapen ];
};
}

0 comments on commit d423e1e

Please sign in to comment.