mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
pythonPackages.atom: init at 0.4.1
This commit is contained in:
parent
acc2bd15e1
commit
cd1f5914bd
23
pkgs/development/python-modules/atom/default.nix
Normal file
23
pkgs/development/python-modules/atom/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, future }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "atom";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0awzja4k3f32y01gd068yyxvh35km62m4wka0vbg1yyy37ahgjmv";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -192,6 +192,8 @@ in {
|
||||
|
||||
astropy = callPackage ../development/python-modules/astropy { };
|
||||
|
||||
atom = callPackage ../development/python-modules/atom { };
|
||||
|
||||
augeas = callPackage ../development/python-modules/augeas {
|
||||
inherit (pkgs) augeas;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user