Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage, fetchPypi, lib, six }: 2 3buildPythonPackage rec { 4 pname = "dictionaries"; 5 version = "0.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8fa92745eb7c707b8588888875234f2f0a61b67936d8deb91b2b7b4c32366112"; 10 }; 11 12 buildInputs = [ six ]; 13 14 meta = { 15 description = "Dict implementations with attribute access"; 16 license = lib.licenses.mit; 17 maintainers = [ lib.maintainers.MostAwesomeDude ]; 18 }; 19}