nixpkgs/pkgs/development/python-modules/xxhash/default.nix
R. RyanTM 6d37f07301 python37Packages.xxhash: 1.3.0 -> 1.4.1
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-xxhash/versions
2019-09-28 17:13:29 -07:00

22 lines
475 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "1.4.1";
pname = "xxhash";
src = fetchPypi {
inherit pname version;
sha256 = "1wgx83lpf8rq95784afj5y9jfcrs1mf6k3pjfyp4a9zigz1zhnkb";
};
meta = with stdenv.lib; {
homepage = https://github.com/ifduyue/python-xxhash;
description = "Python Binding for xxHash https://pypi.org/project/xxhash/";
license = licenses.bsd2;
maintainers = [ maintainers.teh ];
};
}