depot/third_party/nixpkgs/pkgs/development/python-modules/x11_hash/default.nix
Default email d7dbe45cea Project import generated by Copybara.
GitOrigin-RevId: 9480bae337095fd24f61380bce3174fdfe926a00
2020-06-18 09:06:33 +02:00

22 lines
457 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "1.4";
pname = "x11_hash";
src = fetchPypi {
inherit pname version;
sha256 = "172skm9xbbrivy1p4xabxihx9lsnzi53hvzryfw64m799k2fmp22";
};
meta = with stdenv.lib; {
description = "Binding for X11 proof of work hashing";
homepage = "https://github.com/mazaclub/x11_hash";
license = licenses.mit;
maintainers = with maintainers; [ np ];
};
}