about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorRaymond Gauthier <jraygauthier@gmail.com>2015-04-27 22:44:35 -0400
committerRaymond Gauthier <jraygauthier@gmail.com>2015-07-26 09:57:51 -0400
commitcdc58d410bafec1ff85acf0115cbdaab8210fd35 (patch)
treeb4cf073a948126154a48ab1d41cf28500ebd16a2 /pkgs/applications/version-management
parent8e564526fc50d59a7abbb8bdfd8fbd0009c403d0 (diff)
downloadnixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.tar
nixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.tar.gz
nixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.tar.bz2
nixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.tar.lz
nixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.tar.xz
nixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.tar.zst
nixlib-cdc58d410bafec1ff85acf0115cbdaab8210fd35.zip
peru: init at 0.2.3
A project dependencies version management system
built on top of multiple version management systems.
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/peru/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/peru/default.nix b/pkgs/applications/version-management/peru/default.nix
new file mode 100644
index 000000000000..d97aee233883
--- /dev/null
+++ b/pkgs/applications/version-management/peru/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, python3Packages }:
+
+let 
+  version = "0.2.3"; 
+in
+
+python3Packages.buildPythonPackage rec {
+  
+  # Do not prefix name with python specific version identifier.
+  namePrefix = "";
+
+  name = "peru-${version}";
+
+  src = fetchFromGitHub {
+    owner = "buildinspace";
+    repo = "peru";
+    rev = "${version}";
+    sha256 = "04bnaly50qmzkj0shdag94n8vr3ggarlqdny5zdb8nh31fqgln8b";
+  };
+
+  pythonPath = with python3Packages; [ pyyaml docopt ];
+
+  meta = {
+    homepage = https://github.com/buildinspace/peru;
+    description = "A tool for including other people's code in your projects";
+    license = stdenv.lib.licenses.mit;
+  };
+}
\ No newline at end of file