mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20 lines
436 B
Nix
20 lines
436 B
Nix
{ buildPythonPackage, fetchPypi, lib, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dictionaries";
|
|
version = "0.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1jx2ph509sk4l7spslz16y8l6xn97d13nspn4ds2lxn5ward9ihy";
|
|
};
|
|
|
|
buildInputs = [ six ];
|
|
|
|
meta = {
|
|
description = "Dict implementations with attribute access";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
|
};
|
|
}
|