nixpkgs/pkgs/development/python-modules/atom/default.nix

24 lines
538 B
Nix
Raw Normal View History

2018-10-09 18:02:27 -07:00
{ lib, buildPythonPackage, fetchPypi, future }:
buildPythonPackage rec {
pname = "atom";
2019-02-13 23:37:10 -08:00
version = "0.4.2";
2018-10-09 18:02:27 -07:00
src = fetchPypi {
inherit pname version;
2019-02-13 23:37:10 -08:00
sha256 = "5b1c15599681398e343fcfcf2c00d26071964f5305a403fc590c45388bacdf16";
2018-10-09 18:02:27 -07:00
};
propagatedBuildInputs = [ future ];
# Tests not released to pypi
doCheck = true;
meta = with lib; {
description = "Memory efficient Python objects";
maintainers = [ maintainers.bhipple ];
homepage = https://github.com/nucleic/atom;
license = licenses.bsd3;
};
}