depot/third_party/nixpkgs/pkgs/development/python-modules/attrdict/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

19 lines
485 B
Nix

{ lib, stdenv, buildPythonPackage, fetchPypi, coverage, nose, six }:
buildPythonPackage rec {
pname = "attrdict";
version = "2.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70";
};
propagatedBuildInputs = [ coverage nose six ];
meta = with lib; {
description = "A dict with attribute-style access";
homepage = "https://github.com/bcj/AttrDict";
license = licenses.mit;
};
}