about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/x11_hash/default.nix
blob: 22ce5917e2a61aeceb4645bd705605b349baabf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };

}