1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "1.4";
8 pname = "x11_hash";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "172skm9xbbrivy1p4xabxihx9lsnzi53hvzryfw64m799k2fmp22";
13 };
14
15 meta = with lib; {
16 description = "Binding for X11 proof of work hashing";
17 homepage = "https://github.com/mazaclub/x11_hash";
18 license = licenses.mit;
19 maintainers = with maintainers; [ np ];
20 };
21
22}